home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / cli / system2.arc / LOOP.XSL < prev    next >
Text File  |  1985-11-20  |  231b  |  18 lines

  1. *
  2. * loop.xsl
  3. *
  4. * Sample loop construct
  5. *
  6.  
  7.         set %i=0
  8.  
  9. . loop
  10.         echo "This is line "
  11.         echo %i
  12.         echo
  13.         incr %i
  14.         if istrue %i{10; goto loop; endif
  15.  
  16.         unset %i
  17.         exit
  18.